home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ IE Server Connections.xpl < prev    next >
Text File  |  2000-08-07  |  2KB  |  72 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="2"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Internet Explorer\System"
  5. "NAME"="Server Connections"
  6. "VERSION"="1.12"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="HTTP/1.0 Conn."
  9. "TEXT 2"="HTTP/1.1 Conn."
  10. "DESCRIPTION 1"="These settings configure the number of simultaneous requests to a single WWW server. They are split in 1.0 servers (old HTTP standard) and 1.1 servers (modern HTTP standard)."
  11. "DESCRIPTION 2"="Typical settings are "4" for 1.0 servers and "2" for 1.1 servers (RFC2068)."
  12. "DESCRIPTION 3"="To restore the original settings, clear both fields."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"=" "
  18. "COMMENT 3"="Thanks to AXCEL216 (http://members.aol.com/axcel216/) and CptSiskoX!"
  19. "COMMENT 4"="Thans to Guy [dr_teeth@bigfoot.com] for the the notice about the "default values incorrect" bug."
  20.  
  21.  
  22. 'sP="HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Internet Settings\" 'wrong?
  23. sP="HKCU\Software\Microsoft\Windows\CurrentVersion\Internet Settings\"
  24. sV1="MaxConnectionsPer1_0Server"
  25. sV2="MaxConnectionsPerServer"
  26. Sub Plugin_Initialize  
  27.  if RegPathExists(sP) then
  28.  
  29.     i=RegReadValue(sP & sV1)
  30.     SetUIElement 1,i
  31.  
  32.     i=RegReadValue(sP & sV2)
  33.     SetUIElement 2,i
  34.  
  35.  else
  36.     Disable
  37.  end if
  38. End Sub
  39.  
  40. Sub Plugin_CheckData(ElementIndex)
  41. End Sub
  42.  
  43. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  44.  i=GetUIElement(1)
  45.  if len(i)=0 then
  46.     i=RegReadValue(sP & sV1)
  47.     if IsEmpty(i)=false then
  48.        Call RegDeleteValue(sP & sV1)
  49.     end if
  50.  else
  51.     Call RegWriteValue(sP & sV1,i,2)
  52.  end if
  53.  
  54.  i=GetUIElement(2)
  55.  if len(i)=0 then
  56.     i=RegReadValue(sP & sV2)
  57.     if IsEmpty(i)=false then
  58.        Call RegDeleteValue(sP & sV2)
  59.     end if
  60.  else
  61.     Call RegWriteValue(sP & sV2,i,2)
  62.  end if
  63.  
  64.  
  65.  
  66.  
  67.  Call Logoff()
  68. End Sub
  69.  
  70. Sub Plugin_Terminate 
  71. End Sub
  72.